summaryrefslogtreecommitdiffstats
path: root/src/hid_core/resources/system_buttons/system_button_types.h
blob: 929e1dc4c147477239b43e5665212514309561bf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// SPDX-FileCopyrightText: Copyright 2024 yuzu Emulator Project
// SPDX-License-Identifier: GPL-3.0-or-later

#pragma once

#include "hid_core/hid_types.h"

namespace Service::HID {

// This is nn::hid::system::SleepButtonState
struct SleepButtonState {
    s64 sampling_number{};
    Core::HID::SleepButtonState buttons;
};
static_assert(sizeof(SleepButtonState) == 0x10, "SleepButtonState is an invalid size");

// This is nn::hid::system::HomeButtonState
struct HomeButtonState {
    s64 sampling_number{};
    Core::HID::HomeButtonState buttons;
};
static_assert(sizeof(HomeButtonState) == 0x10, "HomeButtonState is an invalid size");

// This is nn::hid::system::SleepButtonState
struct CaptureButtonState {
    s64 sampling_number{};
    Core::HID::CaptureButtonState buttons;
};
static_assert(sizeof(CaptureButtonState) == 0x10, "CaptureButtonState is an invalid size");

} // namespace Service::HID